From dcf4dd274e33ce57a3b71e311ad2c14407806f71 Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Mon, 22 Sep 2014 14:59:54 +0200 Subject: [PATCH] tools: remove obsolete path.py from tools/python The directory tools/python/xen/util does not exist. Upcoming changes to genpath will fail if the rule persists. Nothing uses path.py (anymore?), so get rid it. Signed-off-by: Olaf Hering Acked-by: Ian Campbell [ ijc -- removed from .gitignore too ] --- .gitignore | 1 - tools/python/Makefile | 9 ++------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 8e34b85189..c7cb679ad4 100644 --- a/.gitignore +++ b/.gitignore @@ -186,7 +186,6 @@ tools/misc/lowmemd tools/misc/xencov tools/pygrub/build/* tools/python/build/* -tools/python/xen/util/path.py tools/remus/imqebt/imqebt tools/remus/kmod/*(.cmd|.mod|.ko|.mod.c|.symvers|.xen) tools/security/secpol_tool diff --git a/tools/python/Makefile b/tools/python/Makefile index c9143322d9..4918229df7 100644 --- a/tools/python/Makefile +++ b/tools/python/Makefile @@ -4,13 +4,8 @@ include $(XEN_ROOT)/tools/Rules.mk .PHONY: all all: build -XENPATH = "xen/util/path.py" - -genpath-target = $(call buildmakevars2file,$(XENPATH)) -$(eval $(genpath-target)) - .PHONY: build -build: genpath genwrap.py $(XEN_ROOT)/tools/libxl/libxl_types.idl \ +build: genwrap.py $(XEN_ROOT)/tools/libxl/libxl_types.idl \ $(XEN_ROOT)/tools/libxl/idl.py PYTHONPATH=$(XEN_ROOT)/tools/libxl $(PYTHON) genwrap.py \ $(XEN_ROOT)/tools/libxl/libxl_types.idl \ @@ -31,6 +26,6 @@ test: clean: find . \( -name "*.py[ocd]" -o -name "*~" -o -name "_*.[hc]" \) -delete rm -rf build/ - rm -f $(XENPATH) $(DEPS) + rm -f $(DEPS) -include $(DEPS) -- 2.30.2